home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILREEN / GHSCRIPT.LZH / QHOSTSCR.EXE / _TEMP_.C next >
C/C++ Source or Header  |  1989-10-28  |  16KB  |  513 lines

  1. #line 1 "gdevx.c"
  2. /* Copyright (C) 1989 Aladdin Enterprises.  All rights reserved.
  3.    Distributed by Free Software Foundation, Inc.
  4.  
  5. This file is part of Ghostscript.
  6.  
  7. Ghostscript is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  9. to anyone for the consequences of using it or for whether it serves any
  10. particular purpose or works at all, unless he says so in writing.  Refer
  11. to the Ghostscript General Public License for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. Ghostscript, but only under the conditions described in the Ghostscript
  15. General Public License.  A copy of this license is supposed to have been
  16. given to you along with Ghostscript so you can know your rights and
  17. responsibilities.  It should be in a file named COPYING.  Among other
  18. things, the copyright notice and this notice must be preserved on all
  19. copies.  */
  20.  
  21. /* gdevx.c */
  22. /* X Windows driver for GhostScript library */
  23. #include <X11/Xlib.h>
  24. #include <X11/Xatom.h>
  25. #include <X11/Xutil.h>
  26. #include <stdio.h>
  27. #include <malloc.h>
  28. /* Hack to get around the fact that something in the X library */
  29. /* defines uint and ushort.... */
  30. #  define uint _uint
  31. #  define ushort _ushort
  32. #include "gx.h"            /* for gx_bitmap; includes std.h */
  33. #  undef _uint
  34. #  undef _ushort
  35. #include "gxdevice.h"
  36.  
  37. /* Flags for patching around bugs in the X library */
  38. #define use_XPutImage 0
  39. #define use_XSetTile 0
  40.  
  41. /* Procedures */
  42.  
  43. int x_open(P1(gx_device *));
  44.  
  45. int x_close(P1(gx_device *));
  46.  
  47. int x_map_rgb_color(P4(gx_device *, ushort, ushort, ushort));
  48.  
  49. int x_map_color_rgb(P3(gx_device *, int, ushort *));
  50.  
  51. int x_sync(P1(gx_device *));
  52.  
  53. int x_fill_rectangle(P6(gx_device *, int, int, int, int, int));
  54.  
  55. int x_tile_rectangle(P8(gx_device *, gx_bitmap *, int, int, int, int, int, int));
  56.  
  57. int x_copy_mono(P10(gx_device *, byte *, int, int, int, int, int, int, int, int));
  58.  
  59. int x_copy_color(P9(gx_device *, byte *, int, int, int, int, int, int, int));
  60.  
  61. int x_draw_line(P6(gx_device *, int, int, int, int, int));
  62.  
  63. int x_fill_trapezoid(P8(gx_device *, int, int, int, int, int, int, int));
  64.  
  65. /* The device descriptor */
  66. static gx_device_procs x_procs = {
  67.     x_open,
  68.     x_close,
  69.     x_map_rgb_color,
  70.     x_map_color_rgb,
  71.     x_sync,
  72.     x_fill_rectangle,
  73.     x_tile_rectangle,
  74.     x_copy_mono,
  75.     x_copy_color,
  76.     x_draw_line,
  77.     x_fill_trapezoid,
  78.     gx_default_tile_trapezoid
  79. };
  80. /* Define the X Windows device */
  81. typedef struct gx_device_X_s {
  82.     gx_device_common;
  83.  
  84.     /* An XIMage object for writing bitmap images to the screen */
  85.     XImage image;
  86.  
  87.     /* Global X state */
  88.     Display *dpy;
  89.     Screen *scr;
  90.     Visual *vis;
  91.     Colormap cmap;
  92.     Window win;
  93.     GC gc;
  94.  
  95.     /* Structure for dealing with the halftone tile. */
  96.     /* Later this will become a multi-element cache. */
  97.     struct {
  98.       Pixmap pixmap;
  99.       Pixmap no_pixmap;    /* kludge to get around X bug */
  100.       int width, height, raster;
  101.       byte *bits;
  102.       int bits_size;
  103.     } ht;
  104.     /* Cache the fill style from the GC */
  105.     int fill_style;
  106. #define set_fill_style(style)\
  107.   if ( xdev->fill_style != style )\
  108.     XSetFillStyle(xdev->dpy, xdev->gc, (xdev->fill_style = style))
  109.  
  110.     /* Map color indices to X pixel values */
  111.     unsigned long colors[8];
  112. #define black colors[0]
  113. #define white colors[7]
  114.     int back_color, fore_color;
  115. #define set_back_color(color)\
  116.   if ( xdev->back_color != color )\
  117.     XSetBackground(xdev->dpy, xdev->gc, xdev->colors[xdev->back_color = color])
  118. #define set_fore_color(color)\
  119.   if ( xdev->fore_color != color )\
  120.     XSetForeground(xdev->dpy, xdev->gc, xdev->colors[xdev->fore_color = color])
  121.  
  122. } gx_device_X;
  123.  
  124. /* The instance is public. */
  125. gx_device_X x_device = {
  126.     sizeof(gx_device_X),
  127.     &x_procs,
  128.     640, 350,        /* x and y extent */
  129.         /* Following parameters are initialized for monochrome */
  130.     0,            /* has color */
  131.     1,            /* max r-g-b value */
  132.     1,            /* bits per color pixel */
  133.         /* End of monochrome/color parameters */
  134.     1,            /* bit-big-endian (for now) */
  135.     0,            /* connection not initialized */
  136.     { 0, 0,            /* width, height */
  137.       0, XYBitmap, NULL,    /* xoffset, format, data */
  138.       LSBFirst, 8,        /* byte-order, bitmap-unit */
  139.       MSBFirst, 8, 1        /* bitmap-bit-order, bitmap-pad, depth */
  140.     }
  141.  
  142. };
  143. /* Macro for casting gx_device argument */
  144. #define xdev ((gx_device_X *)dev)
  145.  
  146. /* Macro to validate arguments */
  147. #define check_rect()\
  148.     if ( w <= 0 || h <= 0 ) return 0;\
  149.     if ( x < 0 || x > xdev->width - w || y < 0 || y > xdev->height - h )\
  150.         return -1
  151.  
  152. #if !use_XPutImage
  153. /* XPutImage doesn't work, do it ourselves. */
  154. #  undef XPutImage
  155. void alt_put_image();
  156. #  define XPutImage(dpy,win,gc,im,sx,sy,x,y,w,h)\
  157.     alt_put_image(dev,dpy,win,gc,im,sx,sy,x,y,w,h)
  158. #endif
  159.  
  160. int
  161. x_open(dev)  register gx_device *dev;
  162. {    XSetWindowAttributes xswa;
  163.     int winW = xdev->width, winH = xdev->height;
  164.     int winX, winY;
  165. #ifdef gs_DEBUG
  166. if ( gs_debug['X'] )
  167.     { extern int _Xdebug;
  168.       _Xdebug = 1;
  169.     }
  170. #endif
  171.     if ( !(xdev->dpy = XOpenDisplay(NULL)) )
  172.       { printf("Cannot open display\n");
  173.         exit(1);
  174.       }
  175.     xdev->scr = DefaultScreenOfDisplay(xdev->dpy);
  176.     xdev->vis = DefaultVisualOfScreen(xdev->scr);
  177.     xdev->cmap = DefaultColormapOfScreen(xdev->scr);
  178.     winX = (WidthOfScreen(xdev->scr) - winW) >> 1;
  179.     winY = (HeightOfScreen(xdev->scr) - winH) >> 1;
  180.     xdev->black = BlackPixelOfScreen(xdev->scr);
  181.     xdev->white = WhitePixelOfScreen(xdev->scr);
  182.     xdev->back_color = xdev->fore_color = -1;    /* undefined */
  183.     /* Figure out monochrome vs. color */
  184.     switch ( xdev->vis->class )
  185.       {
  186.       case StaticGray:
  187.       case GrayScale:
  188.         xdev->has_color = 0;
  189.         { int i;
  190.           for ( i = 1; i < 7; i++ ) xdev->colors[i] = xdev->white;
  191.         }
  192.         break;
  193.       default:        /* color */
  194.         xdev->has_color = 1;
  195.         /* Just do primary colors for now */
  196.         { XColor xc;
  197.           int i;
  198.           for ( i = 1; i < 7; i++ )
  199.         { xc.red = (i & 4 ? (ushort)-1 : 0);
  200.           xc.green = (i & 2 ? (ushort)-1 : 0);
  201.           xc.blue = (i & 1 ? (ushort)-1 : 0);
  202.           XAllocColor(xdev->dpy, xdev->cmap, &xc);
  203.           xdev->colors[i] = xc.pixel;
  204.         }
  205.         }
  206.       }
  207.     xdev->ht.pixmap = (Pixmap)0;
  208.     xdev->ht.bits = 0;
  209.     xdev->fill_style = FillSolid;
  210.     xswa.event_mask = 0;
  211.     xswa.background_pixel = xdev->black;
  212.     xdev->win = XCreateWindow(xdev->dpy, RootWindowOfScreen(xdev->scr),
  213.                   winX, winY, winW, winH, 0,
  214.                   DefaultDepthOfScreen(xdev->scr), InputOutput,
  215.                   xdev->vis,
  216.                   CWEventMask | CWBackPixel, &xswa);
  217.     XChangeProperty(xdev->dpy, xdev->win, XA_WM_NAME, XA_STRING, 8,
  218.             PropModeReplace, "GhostScript", 11);
  219.     XMapWindow(xdev->dpy, xdev->win);
  220.     xdev->ht.no_pixmap = XCreatePixmap(xdev->dpy, xdev->win, 1, 1,
  221.                      DefaultDepthOfScreen(xdev->scr));
  222.     /* Set up a graphics context */
  223.     xdev->gc = XCreateGC(xdev->dpy, xdev->win, 0, NULL);
  224.     XSetFunction(xdev->dpy, xdev->gc, GXcopy);
  225.     XSetLineAttributes(xdev->dpy, xdev->gc, 0, LineSolid, CapButt, JoinMiter);
  226.     XSync(xdev->dpy, 0);
  227.     getchar();        /****** X LOSES OUTPUT OTHERWISE ******/
  228.     return 0;
  229. }
  230.  
  231. /* Close the device.  NOT SURE WHAT TO DO HERE YET. */
  232. int
  233. x_close(dev)  gx_device *dev;
  234. {    return 0;
  235. }
  236.  
  237. /* Map a color.  The "device colors" are just r,g,b packed together. */
  238. int
  239. x_map_rgb_color(dev, r, g, b)  register gx_device *dev; ushort r; ushort g; ushort b;
  240. {    return (r << 2) + (g << 1) + b;
  241. }
  242.  
  243.  
  244. /* Map a "device color" back to r-g-b. */
  245. int
  246. x_map_color_rgb(dev, color, prgb)  register gx_device *dev; int color; ushort *prgb;
  247. {    prgb[0] = (color >> 2) & 1;
  248.     prgb[1] = (color >> 1) & 1;
  249.     prgb[2] = color & 1;
  250. }
  251.  
  252. /* Synchronize the display with the commands already given */
  253. int
  254. x_sync(dev)  register gx_device *dev;
  255. {    XSync(xdev->dpy, 0);
  256.     return 0;
  257. }
  258.  
  259. /* Fill a rectangle with a color. */
  260. int
  261. x_fill_rectangle(dev, x, y, w, h, color)  register gx_device *dev;
  262.   int x; int y; int w; int h; int color;
  263. {    check_rect();
  264.     set_fill_style(FillSolid);
  265.     set_fore_color(color);
  266.     XFillRectangle(xdev->dpy, xdev->win, xdev->gc, x, y, w, h);
  267. #ifdef gs_DEBUG
  268. if ( gs_debug['F'] )
  269.     printf("[F] fill (%d,%d):(%d,%d) %d\n",
  270.            x, y, w, h, color);
  271. #endif
  272.     return 0;
  273. }
  274.  
  275. /* Tile a rectangle. */
  276. int
  277. x_tile_rectangle(dev, tile, x, y, w, h, zero, one)  register gx_device *dev; gx_bitmap *tile;
  278.   int x; int y; int w; int h; int zero; int one;
  279. {    check_rect();
  280.     set_back_color(zero);
  281.     set_fore_color(one);
  282.     if ( !set_tile(dev, tile) )
  283.       alt_tile_rectangle(dev, tile, x, y, w, h);
  284.     else
  285.       { /* Use the tile to fill the rectangle */
  286.         XFillRectangle(xdev->dpy, xdev->win, xdev->gc, x, y, w, h);
  287.       }
  288. #ifdef gs_DEBUG
  289. if ( gs_debug['F'] )
  290.     printf("[F] tile (%d,%d):(%d,%d) %d,%d\n",
  291.            x, y, w, h, zero, one);
  292. #endif
  293.     return 0;
  294. }
  295.  
  296. /* Set up with a specified tile. */
  297. /* Return false if we can't do it for some reason. */
  298. int
  299. set_tile(dev, tile)  register gx_device *dev; register gx_bitmap *tile;
  300. {
  301. #ifdef gs_DEBUG
  302. if ( gs_debug['T'] )
  303.     return 0;
  304. #endif
  305.     /* Set up the tile Pixmap */
  306.     if ( tile->width != xdev->ht.width || tile->height != xdev->ht.height ||
  307.         xdev->ht.pixmap == (Pixmap)0 )
  308.       { if ( xdev->ht.pixmap != (Pixmap)0 )
  309.           XFreePixmap(xdev->dpy, xdev->ht.pixmap);
  310.         if ( xdev->ht.bits )
  311.           { free(xdev->ht.bits);
  312.         xdev->ht.bits = 0;
  313.           }
  314.         xdev->ht.pixmap = XCreatePixmap(xdev->dpy, xdev->win,
  315.                       tile->width, tile->height,
  316.                       DefaultDepthOfScreen(xdev->scr));
  317.         if ( xdev->ht.pixmap == (Pixmap)0 )
  318.           return 0;
  319.         xdev->ht.bits_size = tile->raster * tile->height;
  320.         xdev->ht.bits = (byte *)malloc(xdev->ht.bits_size);
  321.         if ( xdev->ht.bits == 0 )
  322.           { XFreePixmap(xdev->dpy, xdev->ht.pixmap);
  323.         xdev->ht.pixmap = (Pixmap)0;
  324.         return 0;
  325.           }
  326.         xdev->ht.width = tile->width, xdev->ht.height = tile->height;
  327.         xdev->ht.raster = tile->raster;
  328.         *xdev->ht.bits = ~*tile->data; /* force copying */
  329.       }
  330.     /* Copy the tile into the Pixmap if needed */
  331.     if ( memcmp(xdev->ht.bits, tile->data, xdev->ht.bits_size) )
  332.       { memcpy(xdev->ht.bits, tile->data, xdev->ht.bits_size);
  333.         xdev->image.data = (char *)tile->data;
  334.         xdev->image.width = tile->width;
  335.         xdev->image.height = tile->height;
  336.         xdev->image.bytes_per_line = tile->raster;
  337.         set_fill_style(FillSolid);
  338. #ifdef gs_DEBUG
  339. if ( gs_debug['H'] )
  340.         { int i;
  341.           printf("[H] 0x%x: width=%d height=%d raster=%d\n",
  342.              tile->data, tile->width, tile->height, tile->raster);
  343.           for ( i = 0; i < tile->raster * tile->height; i++ )
  344.         printf(" %02x", tile->data[i]);
  345.           printf("\n");
  346.         }
  347. #endif
  348.         XSetTile(xdev->dpy, xdev->gc, xdev->ht.no_pixmap); /* *** X bug *** */
  349.         XPutImage(xdev->dpy, xdev->ht.pixmap, xdev->gc, &xdev->image,
  350.               0, 0, 0, 0, tile->width, tile->height);
  351.         XSetTile(xdev->dpy, xdev->gc, xdev->ht.pixmap);
  352.       }
  353.     set_fill_style(FillTiled);
  354.     return use_XSetTile;
  355. }
  356.  
  357. /* Fallback code for tiling when we can't allocate the Pixmap, */
  358. /* or XSetTile/XPutImage doesn't work. */
  359. int
  360. alt_tile_rectangle(dev, tile, x, y, w, h)  register gx_device *dev; gx_bitmap *tile;
  361.   int x; int y; int w; int h;
  362. {    int tile_width = tile->width, tile_height = tile->height;
  363.     int ex = x + w, ey = y + h;
  364.     int etx = ex - tile_width, ety = ey - tile_height;
  365.     int tx, ty;
  366.     int xmod = x % tile_width, ymod = y % tile_height;
  367.     int th = tile_height - ymod;
  368.     int tw = tile_width - xmod;
  369.     if ( tw > w ) tw = w;
  370.     if ( th > h ) th = h;
  371.     xdev->image.data = (char *)tile->data;
  372.     xdev->image.width = tile->width;
  373.     xdev->image.height = tile->height;
  374.     xdev->image.bytes_per_line = tile->raster;
  375.     set_fill_style(FillSolid);
  376.     for ( ty = y; ty < ey; )
  377.       { XPutImage(xdev->dpy, xdev->win, xdev->gc, &xdev->image,
  378.               xmod, ymod, x, ty, tw, th);
  379.         tx = x + tw;
  380.         while ( tx <= etx )
  381.           { XPutImage(xdev->dpy, xdev->win, xdev->gc, &xdev->image,
  382.               0, ymod, tx, ty, tile_width, th);
  383.         tx += tile_width;
  384.           }
  385.         if ( tx < ex )
  386.           XPutImage(xdev->dpy, xdev->win, xdev->gc, &xdev->image,
  387.             0, ymod, tx, ty, ex - tx, th);
  388.         ty += th;
  389.         th = (ty > ety ? ey - ty : tile_height);
  390.         ymod = 0;
  391.       }
  392. }
  393.  
  394. /* Copy a monochrome bitmap. */
  395. int
  396. x_copy_mono(dev, base, sourcex, raster, x, y, w, h, zero, one)  register gx_device *dev; byte *base; int sourcex; int raster;
  397.   int x; int y; int w; int h; int zero; int one;
  398. {    check_rect();
  399.     xdev->image.width = raster << 3;
  400.     xdev->image.height = h;
  401.     xdev->image.data = (char *)base;
  402.     xdev->image.bytes_per_line = raster;
  403.     /****** HANDLE zero=-1 OR one=-1! ******/
  404.     set_back_color(zero);
  405.     set_fore_color(one);
  406.     set_fill_style(FillSolid);
  407.     XPutImage(xdev->dpy, xdev->win, xdev->gc, &xdev->image, sourcex, 0, x, y, w, h);
  408.     return 0;
  409. }
  410.  
  411. /* Copy a "color" bitmap.  Since "color" is the same as monochrome, */
  412. /* this just reduces to copying a monochrome bitmap. */
  413. int
  414. x_copy_color(dev, base, sourcex, raster, x, y, w, h, color_transparent)  register gx_device *dev; byte *base; int sourcex; int raster;
  415.   int x; int y; int w; int h; int color_transparent;
  416. {    int zero = 0, one = 1;
  417.     switch ( color_transparent )
  418.        {
  419.     case 0: zero = -1; break;
  420.     case 1: one = -1; break;
  421.        }
  422.     return x_copy_mono(dev, base, sourcex, raster, x, y, w, h, zero, one);
  423. }
  424.  
  425. /* Draw a line */
  426. int
  427. x_draw_line(dev, x0, y0, x1, y1, color)  register gx_device *dev;
  428.   int x0; int y0; int x1; int y1; int color;
  429. {    set_fore_color(color);
  430.     XDrawLine(xdev->dpy, xdev->win, xdev->gc, x0, y0, x1, y1);
  431.     return 0;
  432. }
  433.  
  434. /* Fill a trapezoid */
  435. int
  436. x_fill_trapezoid(dev, x0, y0, w0, x1, y1, w1, color)  register gx_device *dev;
  437.   int x0; int y0; int w0; int x1; int y1; int w1; int color;
  438. {    XPoint vlist[4];
  439.     XPoint *pv = vlist + 1;
  440.     vlist[0].x = x0, vlist[0].y = y0;
  441.     if ( w0 )
  442.       pv->x = x0 + w0, pv->y = y0, pv++;
  443.     pv->x = x1 + w1, pv->y = y1, pv++;
  444.     if ( w1 )
  445.       pv->x = x1, pv->y = y1, pv++;
  446.     set_fore_color(color);
  447.     set_fill_style(FillSolid);
  448.     XFillPolygon(xdev->dpy, xdev->win, xdev->gc,
  449.              vlist, pv - vlist, Convex, CoordModeOrigin);
  450.     return 0;
  451. }
  452.  
  453. /* ------ Internal procedures ------ */
  454.  
  455. /* Substitute for XPutImage using XFillRectangle. */
  456. /* This is a total hack to get around an apparent bug */
  457. /* in the X server.  It only works with the specific */
  458. /* parameters (bit/byte order, padding) used above. */
  459. static void
  460. alt_put_image(dev, dpy, win, gc, pi, sx, sy, dx, dy, w, h)  gx_device *dev; Display *dpy; Drawable win; GC gc;
  461.   XImage *pi; int sx; int sy; int dx; int dy; unsigned w; unsigned h;
  462. {    int raster = pi->bytes_per_line;
  463.     byte *data = (byte *)pi->data + sy * raster + (sx >> 3);
  464.     int init_mask = 0x80 >> (sx & 7);
  465.     int invert;
  466.     int yi;
  467. #define nrects 40
  468.     XRectangle rects[nrects];
  469.     XRectangle *rp = rects;
  470.     if ( xdev->fore_color >= 0 )
  471.       { if ( xdev->back_color >= 0 )
  472.           { XSetForeground(dpy, gc, xdev->colors[xdev->back_color]);
  473.         XFillRectangle(dpy, win, gc, dx, dy, w, h);
  474.           }
  475.         XSetForeground(dpy, gc, xdev->colors[xdev->fore_color]);
  476.         invert = 0;
  477.       }
  478.     else if ( xdev->back_color >= 0 )
  479.       { XSetForeground(dpy, gc, xdev->colors[xdev->back_color]);
  480.         invert = 0xff;
  481.       }
  482.     else
  483.       return;
  484.     for ( yi = 0; yi < h; yi++, data += raster )
  485.       { register int mask = init_mask;
  486.         register byte *dp = data;
  487.         register int xi = 0;
  488.         while ( xi < w )
  489.           { if ( (*dp ^ invert) & mask )
  490.           { int xleft = xi;
  491.             if ( rp == &rects[nrects] )
  492.               { XFillRectangles(dpy, win, gc, rects, nrects);
  493.             rp = rects;
  494.               }
  495.             /* Scan over a run of 1-bits */
  496.             rp->x = dx + xi, rp->y = dy + yi;
  497.             do
  498.               { if ( !(mask >>= 1) ) mask = 0x80, dp++;
  499.             xi++;
  500.               }
  501.             while ( xi < w && (*dp & mask) );
  502.             rp->width = xi - xleft, rp->height = 1;
  503.             rp++;
  504.           }
  505.         else
  506.           { if ( !(mask >>= 1) ) mask = 0x80, dp++;
  507.             xi++;
  508.           }
  509.           }
  510.       }
  511.     XFillRectangles(dpy, win, gc, rects, rp - rects);
  512. }
  513.